Fixed broken pnpm/action-setup pin and excluded workspace file from zip#220
Conversation
The pnpm/action-setup digest ac6db6d3c1f721f886538a378a2d73e85697340a no longer exists upstream (GitHub returns HTTP 422 for it), so every workflow job pinned to it fails to resolve the action. Replaced it with 0e279bb959325dab635dd2c09392533439d90093, the verified digest behind the current v6/v6.0.8 tag. Discovered during the monorepo pnpm migration in TryGhost/Themes#529. Also excluded pnpm-workspace.yaml from the theme zip: it only carries pnpm 11 build-script approvals (development tooling) and does not belong in the installable theme package.
|
Warning Review limit reached
More reviews will be available in 10 minutes and 10 seconds. Learn how PR review limits work. Your organization has run out of usage credits. Purchase more in the billing tab. ⌛ How to resolve this issue?After more reviews become available, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans include higher PR review limits than trial, open-source, and free plans. In all cases, reviews become available again over time. During sustained high-volume PR review activity, CodeRabbit may temporarily slow when the next review becomes available. Please see our Fair Usage Limits Policy for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (3)
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
Summary
pnpm/action-setuppinac6db6d3c1f721f886538a378a2d73e85697340awith0e279bb959325dab635dd2c09392533439d90093in both workflows. The old digest no longer exists upstream (GitHub returns HTTP 422), so jobs using it fail to resolve the action. The new digest is the verified commit behind the currentv6/v6.0.8tag. Discovered via CodeRabbit during the monorepo pnpm migration in Changed package manager from yarn to pnpm Themes#529.'!pnpm-workspace.yaml'to the gulp zip task exclusions. The file only carries pnpm 11 build-script approvals (development tooling) and should not ship in the installable theme zip.Verification
gh api repos/pnpm/action-setup/commits/0e279bb...resolves; the oldac6db6d...digest returns HTTP 422, confirming the breakage and the fix.pnpm install --frozen-lockfilesucceeded.pnpm zipbuiltdist/pico.zip;unzip -lconfirms nopnpm-*files (nopnpm-workspace.yaml,pnpm-lock.yaml, orpnpm-debug.log) in the archive.assets/built/output was restored so the diff stays scoped to the two fixes.